home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Dev / Oberon / Install / CompileLibs next >
Text File  |  1995-07-02  |  751b  |  28 lines

  1. ;   $RCSfile: CompileLibs $
  2. ;Description: Script to compile the Oberon-A Library modules
  3. ;
  4. ; Created by: fjc (Frank Copeland)
  5. ;  $Revision: 1.3 $
  6. ;    $Author: fjc $
  7. ;      $Date: 1995/01/26 00:03:41 $
  8. ;_________________________________________________________________________
  9.  
  10. Echo "Compiling all the Amiga and Library modules"
  11. Echo "This may take some time ... (30-40 mins)"
  12. Ask "Continue [y/n]?"
  13. IF WARN
  14.   IF NOT EXISTS OBERON-A:OLIB
  15.     Echo "Creating OBERON-A:OLIB and Assign'ing OLIB: to it*N"
  16.     MakeDir OBERON-A:OLIB
  17.     Assign OLIB: OBERON-A:OLIB
  18.   ENDIF
  19.   Stack 10000
  20.   FailAt 5
  21.  
  22.   Echo "Press CTRL-C to interrupt at any time*N"
  23.  
  24.   OBERON-A:OC SETTINGS=OBERON-A:OCLib.prefs NEWSYMFILE BATCH CompileLibs.bat
  25.  
  26.   Echo "All finished ..."
  27. ENDIF
  28.